home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’92 / PatchWorks Kit / <PatchWorks++> / QDGlobals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-11  |  366 b   |  28 lines  |  [TEXT/KAHL]

  1. /*
  2.     QDGlobals.h
  3.     
  4.     A definition of QuickDraw globals.
  5.  */
  6.  
  7. #pragma once
  8.  
  9. #ifndef __QUICKDRAW__
  10. #include <QuickDraw.h>
  11. #endif
  12.  
  13. struct QDGlobals {
  14.     char privates[76];
  15.     long randSeed;
  16.     BitMap screenBits;
  17.     Cursor arrow;
  18.     Pattern dkGray;
  19.     Pattern ltGray;
  20.     Pattern gray;
  21.     Pattern black;
  22.     Pattern white;
  23.     GrafPtr thePort;
  24.     long end;
  25. };
  26.  
  27. typedef struct QDGlobals QDGlobals;
  28.